func time.atoi

8 uses

	time (current package)
		format.go#L417: func atoi(s string) (x int, err error) {
		format.go#L1006: 			year, err = atoi(p)
		format.go#L1020: 			year, err = atoi(p)
		format.go#L1165: 			hr, err = atoi(hour)
		format.go#L1167: 				mm, err = atoi(min)
		format.go#L1170: 				ss, err = atoi(seconds)
		format.go#L1312: 			offset, _ = atoi(zoneName[3:]) // Guaranteed OK by parseGMT.
		format.go#L1425: 	if ns, err = atoi(value[1:nbytes]); err != nil {